home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / captio1a / form1.frm next >
Text File  |  1999-05-10  |  2KB  |  74 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BackColor       =   &H80000007&
  4.    Caption         =   "dyr_workshop"
  5.    ClientHeight    =   885
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   2775
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   885
  11.    ScaleWidth      =   2775
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.Timer Timer2 
  14.       Interval        =   1000
  15.       Left            =   960
  16.       Top             =   480
  17.    End
  18.    Begin VB.Timer Timer1 
  19.       Interval        =   1
  20.       Left            =   120
  21.       Top             =   480
  22.    End
  23.    Begin VB.Label Label1 
  24.       Alignment       =   2  'Center
  25.       BackColor       =   &H00000000&
  26.       Caption         =   "Harlow"
  27.       BeginProperty Font 
  28.          Name            =   "MS Sans Serif"
  29.          Size            =   24
  30.          Charset         =   0
  31.          Weight          =   400
  32.          Underline       =   0   'False
  33.          Italic          =   0   'False
  34.          Strikethrough   =   0   'False
  35.       EndProperty
  36.       Height          =   615
  37.       Left            =   120
  38.       TabIndex        =   0
  39.       Top             =   120
  40.       Width           =   2535
  41.    End
  42. End
  43. Attribute VB_Name = "Form1"
  44. Attribute VB_GlobalNameSpace = False
  45. Attribute VB_Creatable = False
  46. Attribute VB_PredeclaredId = True
  47. Attribute VB_Exposed = False
  48. Dim X As Integer, s As Integer
  49. Dim max As Boolean
  50.  
  51. Private Sub Timer1_Timer()
  52.     If max = False And X <= 255 Then
  53.         X = X + 3
  54.     ElseIf max = True And X > 0 Then
  55.         X = X - 3
  56.     End If
  57.     
  58.     If X = 255 Then
  59.         max = True
  60.     ElseIf X = 0 Then
  61.         max = False
  62.     End If
  63.     Label1.ForeColor = RGB(0, X, 0)
  64. End Sub
  65.  
  66. Private Sub Timer2_Timer()
  67.     s = s + 1
  68.     Form1.Caption = Mid("dyr_workshop", 1, s)
  69.     If s = 13 Then
  70.         Form1.Caption = ""
  71.         s = 0
  72.     End If
  73. End Sub
  74.